Question 10: Which SQL statement selects all rows from the table named Contest, with ContestDate columns with values greater than or equal to March 25, 2019?
SELECT * FROM Contest WHERE ContestDate> = '03 / 25/2019 '
SELECT * FROM Contest WHERE ContestDate <'03 / 25/2019 '
SELECT * FROM Contest HAVING ContestDate> = '03/25/2019'
Question 12: What is the keyword that determines the sort of result set retrieved in the ORDER BY clause?
HIGH and LOW
ASC and DESC
UP and DOWN
Question 12: What does SQL mean?
Structured Query Language
Strong Query Language
Standard Query Language
Strict Query Language
Question 14: Which of the following SQL statements is used to select data from 2 or more tables?
WHERE
JOIN
HAVING
Question 15: Which SQL statement selects all rows from the Products table and sorts the results by ProductID column?